home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Professional Soft Collection 1.02
/
Professional Soft Collection 1.02.iso
/
cdinst.bat
< prev
next >
Wrap
DOS Batch File
|
1994-10-31
|
2KB
|
69 lines
@Echo off
REM This .BAT file creates the two installation diskettes required
REM to install OS/2 from CD-ROM.
REM
REM Display Installation Instructions
CLS
ECHO Welcome to OS/2.
ECHO ...
ECHO To install this version of OS/2 from CD-ROM,
ECHO you must first create two installation diskettes.
ECHO Follow the directions on your screen to create
ECHO these diskettes.
ECHO ...
ECHO To QUIT, press Ctrl+C.
ECHO ...
PAUSE
CLS
REM Test for CDROM
IF EXIST \DISKIMGS\LOADDSKF.EXE GOTO START
ECHO This program must be started from your CD-ROM Drive.
GOTO EXIT
:START
REM OK, we are going to create the disks.
ECHO Label a blank diskette "OS/2 Diskette 1" and
ECHO insert it into Drive A:
PAUSE
ECHO Now creating the
ECHO OS/2 Diskette 1.
\DISKIMGS\LOADDSKF %1\DISKIMGS\OS2\35\DISK1_CD.DSK A: /Y/Q/F
IF ERRORLEVEL 1 GOTO BAD
CLS
ECHO Please remove the diskette from Drive A:
Pause
CLS
ECHO Label another blank diskette "Installation Diskette" and
ECHO insert it into Drive A:
PAUSE
ECHO Now creating the
ECHO Installation Diskette.
\DISKIMGS\LOADDSKF %1\DISKIMGS\OS2\35\DISK0.DSK A: /Y/Q/F
IF ERRORLEVEL 1 GOTO BAD
CLS
ECHO To install OS/2:
ECHO 1) Leave the Installation Diskette in Drive A:
ECHO 2) Press Ctrl, Alt, and Del to restart your computer.
ECHO 3) After restarting your computer, follow the
ECHO instructions on your screen.
GOTO EXIT
:BAD
ECHO A problem occured while creating the installation
ECHO diskettes. Refer to the README.INS file located in
ECHO the root directory on the CD-ROM for additional help.
:EXIT